From: Andy Boyett Date: Wed, 18 Jun 2008 07:24:22 +0000 (+0000) Subject: numpy: Fix python tweak in last commit - $(STAGING_DIR) points to $(TOPDIR)/staging_d... X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=92c3991373173cc8152ad9d8876ebcee28db4b95;p=openwrt%2Fsvn-archive%2Fpackages.git numpy: Fix python tweak in last commit - $(STAGING_DIR) points to $(TOPDIR)/staging_dir/$(ARCH) not $(TOPDIR)/staging_dir SVN-Revision: 11532 --- diff --git a/lang/numpy/Makefile b/lang/numpy/Makefile index b8f3e246a..4179f0ac5 100644 --- a/lang/numpy/Makefile +++ b/lang/numpy/Makefile @@ -30,7 +30,7 @@ define Package/numpy/description endef define Build/Compile - cd $(PKG_BUILD_DIR) ; $(CONFIGURE_VARS) $(MAKE_VARS) $(STAGING_DIR)/i386/host/bin/python ./setup.py install --prefix="$(PKG_INSTALL_DIR)/usr" + cd $(PKG_BUILD_DIR) ; $(CONFIGURE_VARS) $(MAKE_VARS) $(STAGING_DIR)/host/bin/python ./setup.py install --prefix="$(PKG_INSTALL_DIR)/usr" sed -i "s/UCS4/UCS2/g" $(PKG_INSTALL_DIR)/usr/lib/python2.5/site-packages/numpy/core/multiarray.so endef